home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / ItsxGeometry.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  2.0 KB  |  59 lines

  1. //******************************************************************************
  2. //    File: ItsxGeometry.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Declarations for the ItsxGeometry COM interface
  5. //******************************************************************************
  6.  
  7.  
  8. #ifndef ITSXGEOMETRY_H
  9. #define ITSXGEOMETRY_H
  10.  
  11.  
  12. #include "tsxcomtypes.h"
  13. #include "itsxcommon.h"
  14.  
  15.  
  16. #undef INTERFACE
  17. #define INTERFACE ItsxGeometry
  18.  
  19. DECLARE_INTERFACE_(ItsxGeometry, IUnknown)
  20. {
  21.     // IUnknown members
  22.     STDMETHOD(QueryInterface) (THIS_ REFIID, PPVOID) PURE;
  23.     STDMETHOD_(ULONG, AddRef)  (THIS) PURE;
  24.     STDMETHOD_(ULONG, Release) (THIS) PURE;
  25.  
  26.     // ItsxGeometry members
  27.     STDMETHOD(SetVisible) (THIS) PURE;
  28.     STDMETHOD(SetInvisible) (THIS) PURE;
  29.     STDMETHOD(Draw) (THIS) PURE;
  30.     STDMETHOD(GetModelAxesOrientation) (THIS_ tsxAxes*) PURE;
  31.     STDMETHOD(GetWorldAxesPosition) (THIS_ tsxVector*) PURE;
  32.     STDMETHOD(GetWorldBoundingBox) (THIS_ tsxBoundingBox*) PURE;
  33.     STDMETHOD(GetWorldPureTransform) (THIS_ tsxMatrix*) PURE;
  34.     STDMETHOD(WorldRotate) (THIS_ tsxVector*, tsxVector*, float) PURE;
  35.     STDMETHOD(ModelRotate) (THIS_ tsxVector*, tsxVector*, float) PURE;
  36.     STDMETHOD(WorldScale) (THIS_ tsxVector*) PURE;
  37.     STDMETHOD(ModelScale) (THIS_ tsxVector*) PURE;
  38.     STDMETHOD(WorldTranslate) (THIS_ tsxVector*) PURE;
  39.     STDMETHOD(ModelTranslate) (THIS_ tsxVector*) PURE;
  40.     STDMETHOD(GetMatrix) (THIS_ tsxMatrix*) PURE;
  41.     STDMETHOD(SetMatrix) (THIS_ tsxMatrix*) PURE;
  42.     STDMETHOD(ShowAxes) (THIS) PURE;
  43.     STDMETHOD(HideAxes) (THIS) PURE;
  44.     STDMETHOD(GetAxesPosition) (THIS_ tsxVector*) PURE;
  45.     STDMETHOD(SetAxesPosition) (THIS_ tsxVector*) PURE;
  46.     STDMETHOD(GetAxesOrientation) (THIS_ tsxAxes*) PURE;
  47.     STDMETHOD(SetAxesOrientation) (THIS_ tsxAxes*) PURE;
  48.  
  49. };
  50.  
  51. // typedef a pointer to this interface
  52. typedef ItsxGeometry* PITSXGEOMETRY;
  53.  
  54. // define a GUID for this interface
  55. // {E593B521-304E-11d1-A255-006097D15F58}
  56. DEFINE_GUID(IID_ItsxGeometry, 0xe593b521, 0x304e, 0x11d1, 0xa2, 0x55, 0x0, 0x60, 0x97, 0xd1, 0x5f, 0x58);
  57.  
  58.  
  59. #endif // ITSXGEOMETRY_H